home *** CD-ROM | disk | FTP | other *** search
/ Champak 132 (Alt) / Vol 132.iso / games / rong.swf / scripts / %3Cdefault package%3E / CMouseCursor.as < prev    next >
Encoding:
Text File  |  2011-06-09  |  299 b   |  11 lines

  1. function CMouseCursor()
  2. {
  3.    Mouse.addListener(this);
  4. }
  5. CMouseCursor.prototype = new MovieClip();
  6. Object.registerClass("CMouseCursor",CMouseCursor);
  7. CMouseCursor.prototype.onMouseMove = function()
  8. {
  9.    this._rotation = Math.atan2(this._y - 150,this._x - 150) / 3.141592653589793 * 180;
  10. };
  11.